[READ-ONLY] Mirror of https://github.com/flo-bit/threlte-vr-code-editor. proof of concept for a live 3d code editor in vr
code-editor threejs threlte vr
0

Configure Feed

Select the types of activity you want to include in your feed.

1<script lang="ts"> 2 import { Canvas } from '@threlte/core'; 3 import EditScene from './EditScene.svelte'; 4 import { onMount } from 'svelte'; 5 6 export let id = ''; 7</script> 8 9<Canvas> 10 <EditScene {id} /> 11</Canvas>